/******************************navbar***************************/
body::-webkit-scrollbar-track {
    border: 1px solid black;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(35, 34, 34);
}

.logo {
    height: 70px;
    width: 80px;
    margin-left: -15px;
}

.bar {
    color: white;
    font-size: 30px;
}

.navbar-toggler {
    outline: none;
    border: none;
}

.navbar a {
    color: #f2f2f2f2;
    font-size: 18px;
    margin-left: 35px;
    transition: .3s;
    position: relative;
    font-weight: bold;
}

.navbar a:hover {
    color: green;
    filter: brightness(2);
    transition: 0.3s ease-in-out;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 30px 100px 10px 100px;
    background: var(--gray);
    display: flex;
    justify-content: space-between;
    text-align: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, .2);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

nav:hover::before {
    left: 100%;
}

* {
    margin: 0;
    padding: 0;
    transition: 0.3s ease-in;
}

body,
html {
    overflow-x: hidden;
}


body {
    font-family: 'Poppins', Arial, sans-serif;
    background-image: url('images/Sprinkle.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.overview {
    color: white;

}

.overview .txt3 {
    color: red;
    font-size: 35px;
}

.overview li {
    color: white;
}

.overview h2:hover {
    color: gold;
}

.checkmark-list li::before {
    content: '\2713';
    color: #007BFF;
    font-size: 1.2em;
}

.checkmark-list li:hover {
    color: gold;
}

.checkmark-list .txt2 {
    color: red;
    font-size: 35px;
}

.checkmark-list h3 {
    color: #bcaaff;
}

.checkmark-list h3 li {
    color: #bcaaff;
}

@media (max-width: 992px) {

    .overview img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .overview h2 {
        font-size: 24px;
    }

    .overview p {
        font-size: 16px;
    }

    .overview ul {
        padding-left: 20px;
    }

    .txt {
        font-size: 24px;
    }

    .txt2 .txt3 {
        font-size: 24px;
        text-align: left;
    }

}

@media (max-width: 768px) {

    .overview img {
        max-width: 100%;
        /* Adjust image size for smaller screens */
        margin-bottom: 20px;
        /* Add some spacing below the image */
    }

    .overview h2 {
        font-size: 20px;
        /* Adjust heading font size */
    }

    .overview p {
        font-size: 14px;
        /* Adjust paragraph font size */
    }

    .overview ul {
        padding-left: 15px;
        /* Indent list items */
    }

    txt {
        font-size: 20px;
    }

    .txt2 .txt3 {
        font-size: 20px;
        text-align: left;
    }
}


/************************** *arrow*************************/
#arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: green;
    color: white;
    font-size: 70px;
    overflow: hidden;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    transition: 0.5s ease;
    font-family: "poppins", sans-serif;
}

#arrow:hover {
    background-color: rgb(6, 204, 6);
    box-shadow: 0 0 5px 4px rgb(17, 194, 17);
    transition: 0.3s ease-out;
}


/***************************footer**************************/
.logoFooter {
    transition: 0.3s ease;
}

.headingFoot {
    color: green;
    filter: brightness(2);
    font-weight: bold;
}

.logoFooter:hover {
    color: green;
    filter: brightness(2);
    transition: 0.3s ease-out;
}

.links a {
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}

.links a::before {
    content: '';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: 30px;
    background-color: green;
    filter: brightness(2);
    transition: 0.5s ease;
    opacity: 0;
}

.links a:hover::before {
    opacity: 1;
}

.links a:hover {
    transform: translateX(-4px);
    color: rgb(242, 255, 238);
    text-shadow: 1px 1px green;
}

.social a i {
    color: green;
    font-size: 28px;
    margin-top: 2rem;
    margin-right: 5px;
    transition: 0.3s ease;
}

.social a i:hover {
    filter: brightness(2);
}

@media (max-width:1424px) {
    .links a::before {
        content: none;
    }
}

@media (max-width: 768px) {
    .footer .container {
        text-align: center;
    }

    .footer .widget {
        text-align: center;
    }

}